home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / getservent.0 < prev    next >
Text File  |  1996-09-02  |  4KB  |  87 lines

  1.  
  2. GETSERVENT(3)              UNIX Programmer's Manual              GETSERVENT(3)
  3.  
  4. NNAAMMEE
  5.      ggeettsseerrvveenntt, ggeettsseerrvvbbyyppoorrtt, ggeettsseerrvvbbyynnaammee, sseettsseerrvveenntt, eennddsseerrvveenntt - get
  6.      service entry
  7.  
  8. SSYYNNOOPPSSIISS
  9.      ##iinncclluuddee <<nneettddbb..hh>>
  10.  
  11.      _s_t_r_u_c_t _s_e_r_v_e_n_t _*
  12.      ggeettsseerrvveenntt()
  13.  
  14.      _s_t_r_u_c_t _s_e_r_v_e_n_t _*
  15.      ggeettsseerrvvbbyynnaammee(_c_h_a_r _*_n_a_m_e, _c_h_a_r _*_p_r_o_t_o)
  16.  
  17.      _s_t_r_u_c_t _s_e_r_v_e_n_t _*
  18.      ggeettsseerrvvbbyyppoorrtt(_i_n_t _p_o_r_t, _p_r_o_t_o)
  19.  
  20.      _v_o_i_d
  21.      sseettsseerrvveenntt(_i_n_t _s_t_a_y_o_p_e_n)
  22.  
  23.      _v_o_i_d
  24.      eennddsseerrvveenntt(_v_o_i_d)
  25.  
  26. DDEESSCCRRIIPPTTIIOONN
  27.      The ggeettsseerrvveenntt(), ggeettsseerrvvbbyynnaammee(), and ggeettsseerrvvbbyyppoorrtt() functions each re-
  28.      turn a pointer to an object with the following structure containing the
  29.      broken-out fields of a line in the network services data base,
  30.      _/_e_t_c_/_s_e_r_v_i_c_e_s.
  31.  
  32.            struct  servent {
  33.                    char    *s_name;        /* official name of service */
  34.                    char    **s_aliases;    /* alias list */
  35.                    int     s_port;         /* port service resides at */
  36.                    char    *s_proto;       /* protocol to use */
  37.            };
  38.  
  39.      The members of this structure are:
  40.  
  41.      _s___n_a_m_e     The official name of the service.
  42.  
  43.      _s___a_l_i_a_s_e_s  A zero terminated list of alternate names for the service.
  44.  
  45.      _s___p_o_r_t     The port number at which the service resides.  Port numbers
  46.                 are returned in network byte order.
  47.  
  48.      _s___p_r_o_t_o    The name of the protocol to use when contacting the service.
  49.  
  50.      The ggeettsseerrvveenntt() function reads the next line of the file, opening the
  51.      file if necessary.
  52.  
  53.      The sseettsseerrvveenntt() function opens and rewinds the file.  If the _s_t_a_y_o_p_e_n
  54.      flag is non-zero, the net data base will not be closed after each call to
  55.      ggeettsseerrvvbbyynnaammee() or ggeettsseerrvvbbyyppoorrtt().
  56.  
  57.      The eennddsseerrvveenntt() function closes the file.
  58.  
  59.      The ggeettsseerrvvbbyynnaammee() and ggeettsseerrvvbbyyppoorrtt() functions sequentially search
  60.      from the beginning of the file until a matching protocol name or port
  61.      number is found, or until EOF is encountered.  If a protocol name is also
  62.  
  63.  
  64.  
  65.  
  66.      supplied (non- NULL), searches must also match the protocol.
  67.  
  68. FFIILLEESS
  69.      /etc/services
  70.  
  71. DDIIAAGGNNOOSSTTIICCSS
  72.      Null pointer (0) returned on EOF or error.
  73.  
  74. SSEEEE AALLSSOO
  75.      getprotoent(3),  services(5)
  76.  
  77. HHIISSTTOORRYY
  78.      The ggeettsseerrvveenntt(), ggeettsseerrvvbbyyppoorrtt(), ggeettsseerrvvbbyynnaammee(), sseettsseerrvveenntt(), and
  79.      eennddsseerrvveenntt() functions appeared in 4.2BSD.
  80.  
  81. BBUUGGSS
  82.      These functions use static data storage; if the data is needed for future
  83.      use, it should be copied before any subsequent calls overwrite it.  Ex-
  84.      pecting port numbers to fit in a 32 bit quantity is probably naive.
  85.  
  86. 4.2 Berkeley Distribution      January 12, 1994                              2
  87.